home *** CD-ROM | disk | FTP | other *** search
/ Erotic Encounters / Erotic Encounters.iso / cshow / printdoc.bat < prev    next >
DOS Batch File  |  1991-01-05  |  616b  |  20 lines

  1. Echo Off
  2. Cls
  3. Echo ┌───────────────────────────────────────────────────────┐
  4. Echo │ PrintDoc: print all CompuShow documentation (on LPT1) │
  5. Echo ├───────────────────────────────────────────────────────┤
  6. Echo │   To send the output to another printer, cancel by    │
  7. Echo │   typing ^C at the pause and say "PrintDoc LPT2" or   │
  8. Echo │   "PrintDoc Com1", etc.                               │
  9. Echo └───────────────────────────────────────────────────────┘
  10. Echo On
  11. Pause Type ^C to cancel, any other key to print
  12. If [%1]==[] GoTo P1
  13. GoTo P2
  14. :P1
  15. Copy *.Doc Lpt1
  16. GoTo P3
  17. :P2
  18. Copy *.Doc %1
  19. :P3
  20. REM done.